home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 2.iso / pc / data / m19.dir / 00067.ls < prev    next >
Encoding:
Text File  |  1996-09-09  |  1.0 KB  |  30 lines

  1. on exitFrame
  2.   global gSoundPath, gCurrentSlide, gNumberofSlides
  3.   pupSprites(12, 17, 1)
  4.   if gCurrentSlide = 1 then
  5.     set the castNum of sprite 12 to cast "1/7"
  6.     set the castNum of sprite 13 to cast "b015"
  7.     set the castNum of sprite 14 to cast "blankprevious"
  8.     set the castNum of sprite 16 to cast "t1"
  9.     set the castNum of sprite 17 to cast "p1"
  10.     updateStage()
  11.   else
  12.     if gCurrentSlide = 7 then
  13.       set the castNum of sprite 12 to cast "7/7"
  14.       set the castNum of sprite 13 to cast "blanknext"
  15.       set the castNum of sprite 14 to cast "b017"
  16.       set the castNum of sprite 16 to cast "t7"
  17.       set the castNum of sprite 17 to cast "p7"
  18.       updateStage()
  19.     else
  20.       set the castNum of sprite 12 to cast (gCurrentSlide & "/7")
  21.       set the castNum of sprite 13 to cast "b015"
  22.       set the castNum of sprite 14 to cast "b017"
  23.       set the castNum of sprite 16 to cast ("t" & gCurrentSlide)
  24.       set the castNum of sprite 17 to cast ("p" & gCurrentSlide)
  25.       updateStage()
  26.     end if
  27.   end if
  28.   narrate()
  29. end
  30.